* gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Fix typo; tmp_event ->
temp_event.
+2004-07-09 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktooltips.c (gtk_tooltips_paint_window): Use the
+ requisition of the widget instead of relying on the style
+ drawing function to supply the size of the drawable. (#146531)
+
2004-07-09 Matthias Clasen <mclasen@redhat.com>
Make GtkEntry work harder to protect passwords: (#143955,
* gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Fix typo; tmp_event ->
temp_event.
+2004-07-09 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktooltips.c (gtk_tooltips_paint_window): Use the
+ requisition of the widget instead of relying on the style
+ drawing function to supply the size of the drawable. (#146531)
+
2004-07-09 Matthias Clasen <mclasen@redhat.com>
Make GtkEntry work harder to protect passwords: (#143955,
* gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Fix typo; tmp_event ->
temp_event.
+2004-07-09 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktooltips.c (gtk_tooltips_paint_window): Use the
+ requisition of the widget instead of relying on the style
+ drawing function to supply the size of the drawable. (#146531)
+
2004-07-09 Matthias Clasen <mclasen@redhat.com>
Make GtkEntry work harder to protect passwords: (#143955,
* gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Fix typo; tmp_event ->
temp_event.
+2004-07-09 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktooltips.c (gtk_tooltips_paint_window): Use the
+ requisition of the widget instead of relying on the style
+ drawing function to supply the size of the drawable. (#146531)
+
2004-07-09 Matthias Clasen <mclasen@redhat.com>
Make GtkEntry work harder to protect passwords: (#143955,
static gint
gtk_tooltips_paint_window (GtkTooltips *tooltips)
{
+ GtkRequisition req;
+
+ gtk_widget_size_request (tooltips->tip_window, &req);
gtk_paint_flat_box (tooltips->tip_window->style, tooltips->tip_window->window,
GTK_STATE_NORMAL, GTK_SHADOW_OUT,
NULL, GTK_WIDGET(tooltips->tip_window), "tooltip",
- 0, 0, -1, -1);
+ 0, 0, req.width, req.height);
return FALSE;
}